This code uses Django <http://www.djangoproject.com/> to present a (very
basic) Python & web interface to the (putative) GSM database.  This means
you'll need Django <http://www.djangoproject.com/> installed to use it. But
hey, that'll make writing web pages a snap.

Note that this is intended as a proof-of-concept, not, in any way, a final
implementation. Longer term, we'd probably want to use a more general-purpose
ORM that didn't tie us into Django -- SQLAlchemy, say, or something based on
the USG's DAL.

Note that you'll need to set up a database & tell this code about it using the
file settings.py: the TKP test database isn't currently accessible outside
a few select systems, so I've removed it.

You'll also need to configure the TEMPLATE_DIRS parameter in that file before
you can run the web interface.

To start a webserver, run:

  python manage.py runserver

For a Python prompt:

  python manage.py shell

You can then go ahead and access the three tables that are currently
accessible --  Sources, Spectralparameters and Classification -- using the
Django DB-API: <http://www.djangoproject.com/documentation/db-api/>.
